home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / winvn060.arc / SAVEART.DLG < prev    next >
Text File  |  1991-07-01  |  821b  |  15 lines

  1. /*-- This is the first line of SAVEART.DLG ---------------------------- */
  2.  
  3. #include "winvn.h"
  4.  
  5. WinVnSaveArt DIALOG LOADONCALL MOVEABLE DISCARDABLE 26, 39, 260, 72
  6. Caption "Save Article to File"
  7. STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_VISIBLE | WS_POPUP
  8. BEGIN
  9.    CONTROL "Please enter the file name under which to save the article:", 400, "static", SS_CENTER | WS_CHILD, 3, 9, 248, 8
  10.    CONTROL "", IDD_FILENAME, "edit", ES_LEFT | ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | WS_CHILD, 17, 28, 172, 12
  11.    CONTROL "Append to this file", IDD_APPEND, "button", BS_CHECKBOX | WS_TABSTOP | WS_CHILD, 19, 47, 88, 12
  12.    CONTROL "OK", IDOK, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 204, 25, 33, 16
  13.    CONTROL "Cancel", IDCANCEL, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 204, 46, 33, 16
  14. END
  15.